From: | Richard Lane |
Date: | 1 May 2001 at 22:08:55 |
Subject: | Re: [D5] ARexx query |
Hello Jonathan,
Tuesday, May 01, 2001, 2:30:00 AM, you wrote:
> Hi there,
> My MiamiConnect script still doesn't have much intergration with DOpus, yet,
> but I'm working on stuff and it's simply a case of learning as much about
> rexx as I can (I'm a novice on any kind of scripting).
> First problem that I hope somebody can help with:
> I'm using basic Requestchoice for the requestors as I can do linefeeds with
> *N.
>>From what I've looked at with .dopus5 scripts the way is to use ||lf||, but
> I cannot for the life of me get this to work. Can anyone give me a working
> example- a few lines of code?
You need to define what the "lf" (line feed) is first, I remember
finding this out the hard way. :) Just put this at the top of your
script.
lf = '0a'x
Yep, it's that easy. :)